home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part1 / 1250 / BCPP18.ZIP / BCPP / CODE / ANYOBJ.CPP next >
Encoding:
C/C++ Source or Header  |  1994-11-18  |  408 b   |  16 lines

  1. #ifndef _ANYOBJECT_CODE
  2. #define _ANYOBJECT_CODE
  3.  
  4. // Program code written by Steven De Toni ACBC 11
  5.  
  6. #include "anyobj.h"
  7.  
  8. // ###############################################################################
  9. // #### ANYOBJECT Destructor ####
  10. // ##############################
  11. // Set to virtual so that objects can call there own destructors
  12. // without becoming confused.
  13. ANYOBJECT::~ANYOBJECT (void) {};
  14.  
  15. #endif
  16.